FilterLabs.AI Org List

Published

November 27, 2023

Below is a brief summary of the updated organizational list provided by FilterLabs.AI on November 14th, 2023.

Organization Type

dat |> pull(Organization.Type) |> table()

              Business              Business  Community Organization 
                   999                      1                   4044 
             Education             Government       Individual Media 
                   660                   1747                     73 
                  News              Religious 
                   536                   2636 

Sub-Category

dat |> pull(Sub.Category) |> table()

                                        adult_education_institution 
                                3                                 9 
         agricultural_association              business_association 
                              124                               301 
                  business_entity     community_service_association 
                              621                              1290 
            cultural_organization             education_association 
                              353                                53 
       environmental_organization                 government_agency 
                              506                              1588 
healthcare_organization_nonprofit   healthcare_organization_private 
                              113                                97 
     higher_education_institution        issue_advocacy_association 
                              153                               185 
               labor_organization                     military_news 
                               20                                 2 
                 misc_association                    misc_nonprofit 
                               13                                72 
         neighborhood_association                        news_media 
                              787                               540 
                              pac                     personal_blog 
                               55                                68 
                    public_figure            recreation_association 
                              101                               138 
            religious_association             religious_institution 
                               30                              2608 
                       school_k12                        school_k18 
                              469                                 1 
                      social_feed                    support_groups 
                                3                                37 
           technology_association            utilities_and_services 
                                4                               352 

Organization Scale

# scale count
dat |> filter(grepl('scale_', Scale)) |> pull(Scale) |> table()

   scale_county  scale_district scale_municipal  scale_national     scale_state 
           1398            3649            4529             226             652 
# misclassifieds scales items
dat |> filter(grepl('scale_', Scale) == FALSE) |> pull(Scale) |> length()
[1] 242

Organization Tags

# Organization related to landscape domain cohesive strategy
dat |> pull(strategy_landscape) |> table()

FALSE  TRUE 
 9202  1185 
# Organization related to community domain of cohesive strategy
dat |> pull(strategy_community) |> table()

FALSE  TRUE 
 9403  1226 
# Organization related to response domain of cohesive strategy
dat |> pull(strategy_response) |> table()

FALSE  TRUE 
 9712   915 
# Organization clearly related to fire
dat |> pull(misc_fire) |> table()

FALSE  TRUE 
 9864   761 
# Organization clearly related to utilities
dat |> pull(misc_utility) |> table()

FALSE  TRUE 
10305   323 

Search Table

DT::datatable(dat |> select(org = Name, loc = Audience.Location, type = Organization.Type, subtype = Sub.Category, scale = Scale, strategy_landscape, strategy_community, strategy_response, misc_fire, misc_utility))